home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / dev / amos / AMOS1097.lzh / AMOSLIST / 000160_amos-request@svcs1.digex.net_Tue Oct 14 22:14:52 1997.msg < prev    next >
Internet Message Format  |  1997-11-02  |  2KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail4.access.digex.net (8.8.5/8.8.5) with ESMTP id WAA03230
  3.     for <mcox@access.digex.net>; Tue, 14 Oct 1997 22:14:50 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id UAA06524
  6.     for amos-out; Tue, 14 Oct 1997 20:42:43 -0400 (EDT)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id UAA06521
  9.     for <amos-list@svcs1.digex.net>; Tue, 14 Oct 1997 20:42:42 -0400 (EDT)
  10. Received: from ulster.net (root@marvin.ulster.net [208.148.73.5])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id UAA22796
  12.     for <amos-list@access.digex.net>; Tue, 14 Oct 1997 20:42:41 -0400 (EDT)
  13. Received: from mhv.net (root@spice.mhv.net [199.0.0.21]) by ulster.net (8.8.5/8.7.3) with ESMTP id UAA07650 for <amos-list@access.digex.net>; Tue, 14 Oct 1997 20:48:42 -0400
  14. Received: from mike (port132.ulster.net [208.148.73.152]) by mhv.net (8.8.5/8.7.3) with SMTP id UAA31477 for <amos-list@access.digex.net>; Tue, 14 Oct 1997 20:42:35 -0400
  15. Message-ID: <3444112E.191D@mhv.net>
  16. Date: Tue, 14 Oct 1997 20:41:19 -0400
  17. From: Michael Drummond <miked@mhv.net>
  18. X-Mailer: Mozilla 3.0 (Win95; U)
  19. MIME-Version: 1.0
  20. To: amos-list@access.digex.net
  21. Subject: Re: Amos & Midi
  22. References: <0002BEB6.@modusmedia.com>
  23. Content-Type: text/plain; charset=us-ascii
  24. Content-Transfer-Encoding: 7bit
  25. Status: O
  26. X-Status: 
  27.  
  28. Declan_Gorman@modusmedia.com wrote:
  29.  
  30. >      A couple of questions....
  31. >      i) Is there an Amos extension that supports Midi? 
  32. >      ii) Has anyone on the list written any Midi routines using Amos? 
  33. >      iii) Where can I get some technical documentation on how to address
  34. >           Midi hardware?
  35.  
  36. i) 
  37. Nah, but you can put MIDI in OctaMed & use Med Midi On
  38.  
  39. ii)
  40. Rem Exec 'run "mydrive:tripleplayplus/other sequencers/triple play
  41. plus"' 
  42. 'only if you've got B&P Triple Play - run once, then re-Rem
  43.  
  44. Serial Open 0,0 : Serial Speed 0,31250
  45. Serial Bits 0,8,1 : Serial Parity 0,-1 : Serial X 0,-1
  46. Wait Vbl
  47. For N=0 To 12
  48. Serial Send 0,Chr$($90)+Chr$(N+60)+Chr$(127)
  49. wait 5
  50. Serial Send 0,Chr$($80)+Chr$(N+60)+Chr$(0)
  51. Next
  52. 'Play a chromatic scale from C5 to C6
  53. Serial Send 0,Chr$($B0)+Chr$(123)+Chr$(0) : Wait Vbl
  54. 'Send all notes off to be safe
  55. Repeat : Until Serial Check(0)
  56. Serial Close 0
  57.  
  58. iii)
  59. All you need are the MIDI codes (all 8 bit)
  60.  
  61. email me privately if you have probs